#web-hosting-maintenance {
    background: linear-gradient(135deg, #f5f2f2, #eef1f4);

    padding: 50px 0;
}

.website-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
    flex-direction: row-reverse;
}

/* Left Side - Image */
.website-image-container {
    flex: 1;
    min-width: 300px;
}

.website-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Right Side - Text Content */
.website-content {
    flex: 1;
    min-width: 300px;
}

.website-title {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.website-subtitle,
.website-text {
    font-size: 17px;
    color: #1a1919;
    line-height: 1.6;
    margin-bottom: 15px;
}

.website-text strong1 {
    color: #fcb401; /* Make it blue for emphasis */
    font-weight: bold;
    font-size: 20px;
}

.website-text strong{
    color: #19C0FF;
    font-weight: bold;
}

.website-subtitle strong {
    color: #fcb401;
    font-weight: bold;
}

.tp-16 strong{
    color: #19C0FF;
    font-weight: bold;
}

/* Button Styling */
.website-button {
    background-color: #19C0FF;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.website-button:hover {
    background-color: #00a4df;
}

/* Responsive Design */
@media (max-width: 768px) {
    .website-container {
        flex-direction: column;
        text-align: center;
    }

    .website-image-container {
        order: -1;
    }
}